home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_498 / zoomdaemon / source / zoom-handler.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  767b  |  28 lines

  1. #define INTUITION_PREFERENCES_H             /* don't need 'em */
  2. #include <intuition/intuitionbase.h>
  3. #include <exec/interrupts.h>
  4. #include <libraries/dos.h>
  5. #include <exec/memory.h>
  6.  
  7. #include "Zoom-Daemon.h"
  8.  
  9.  
  10. #define PROGRAM     "Zoom-Handler"
  11. #define MAJVERS     2
  12. #define MINVERS     1
  13.  
  14. #define MINLOADVER  3       /* The minimum version number of the loader */
  15.                             /* (a loader of lower version will be an error) */
  16.  
  17. extern struct IntuitionBase *IntuitionBase;
  18.  
  19. extern USHORT ZoomData[ZOOMDEPTH][ZOOMHEIGHT*ZOOMWORDS];
  20. extern USHORT LR_ZoomData[LRZOOMDEPTH][LRZOOMHEIGHT*LRZOOMWORDS];
  21.  
  22. extern struct ExtGadget *AllocMem();
  23. #define MEMFLAGS        (MEMF_CLEAR | MEMF_PUBLIC)
  24.  
  25. #ifndef MAX
  26. #define MAX(x,y)        (((x)>(y))?(x):(y))
  27. #endif
  28.